home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / terms / kermit / b / ckmkr2.r < prev    next >
Encoding:
Text File  |  1992-11-22  |  2.2 KB  |  89 lines

  1. /* $Id: ckmkr2.r,v 1.7 91/12/15 23:17:45 rick Exp $
  2.  * $Source: /uw/mackermit/RCS/ckmkr2.r,v $
  3.  *------------------------------------------------------------------
  4.  * $Log:    ckmkr2.r,v $
  5. # Revision 1.7  91/12/15  23:17:45  rick
  6. # ut9
  7. # Revision 1.6  91/10/13  13:43:34  rick
  8. # UT(7)
  9. # Revision 1.5  91/10/01  12:16:52  rick
  10. # UT(5)
  11. # Revision 1.4  91/09/25  12:17:22  rick
  12. # Command window in TE. Multiple vt100 windows for command window.
  13. # Revision 1.3  91/09/12  21:50:48  rick
  14. # UT(3). Install on watsun
  15. # Revision 1.2  1991/09/10  22:21:46  rick
  16. # Update to UTexas(2)
  17. #
  18. # Revision 1.1  1991/09/10  19:18:00  rick
  19. # Initial revision
  20. #
  21.  *------------------------------------------------------------------
  22.  * $Endlog$
  23.  */
  24.  
  25. /*
  26.   Copyright (C) 1985, 1992, Trustees of Columbia University in the City of New
  27.   York.  Permission is granted to any individual or institution to use this
  28.   software as long as it is not sold for profit.  This copyright notice must be
  29.   retained.  This software may not be included in commercial products without
  30.   written permission of Columbia University.
  31. */
  32.  
  33. /* Create the version string for Kermit with the last compi-    */
  34. /* lation time. Compile this resource definition with Rez.        */
  35. /* Created: 10/12/87 Matthias Aebi                                */
  36. /* Modifications:                                                */
  37.  
  38. type 'KR09' {
  39.     byte = lenlabel / 8 - 1;    /* length of array */
  40.     array CompileTime {
  41.         string;
  42.         byte;        /* month first digit */
  43.         byte;        /* month second digit */
  44.         byte = '/';
  45.         byte;        /* day first digit */
  46.         byte;        /* day second digit */
  47.         byte = '/';
  48.         byte;        /* year first digit */
  49.         byte;        /* year second digit */
  50.         byte = ' ';
  51.         byte;        /* hour first digit */
  52.         byte;        /* hour second digit */
  53.         byte = ':';
  54.         byte;        /* minute first digit */
  55.         byte;        /* minute second digit */
  56.     };
  57.     lenlabel:;
  58. };
  59.  
  60. resource 'KR09' (0) {
  61.     {    
  62.         "Kermit Version 0.99(188) \321 ",
  63.         ($$Month/10)+48,
  64.         ($$Month%10)+48,
  65.         ($$Day/10)+48,
  66.         ($$Day%10)+48,
  67.         ($$Year%100/10)+48,
  68.         ($$Year%10)+48,
  69.         ($$Hour/10)+48,
  70.         ($$Hour%10)+48,
  71.         ($$Minute/10)+48,
  72.         ($$Minute%10)+48
  73.     }
  74. };
  75.  
  76. /*
  77.  * Junk so Emacs will set local variables to be compatible with Mac/MPW.
  78.  * Should be at end of file.
  79.  * 
  80.  * Local Variables:
  81.  * tab-width: 4
  82.  * End:
  83.  */
  84.